home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / jaq / jstatInt.h < prev    next >
C/C++ Source or Header  |  1992-07-16  |  950b  |  39 lines

  1. /*
  2.  * jstatInt.h --
  3.  *
  4.  *    Declarations for use by the jstat utility for Jaquith archive system
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/lib/forms/RCS/jstatInt.h,v 1.0 91/02/09 13:24:52 mottsmth Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _JSTATINT
  19. #define _JSTATINT
  20.  
  21. #define DEF_MAIL ""
  22. #define DEF_DEVICES 0
  23. #define DEF_QUEUES 0
  24. #define DEF_ARCHLIST 0
  25.  
  26. typedef struct Parms {
  27.     char *server;
  28.     int port;
  29.     char *arch;
  30.     char *mail;
  31.     int devices;
  32.     int queues;
  33.     int archList;
  34. } Parms;
  35.  
  36. #endif /* _JSTATINT */
  37.  
  38.  
  39.